home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19970626-19970929 / 000301_news@newsmaster….columbia.edu _Fri Sep 5 22:07:53 1997.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id WAA10426
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Fri, 5 Sep 1997 22:07:52 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id WAA18530
  7.     for kermit.misc@watsun; Fri, 5 Sep 1997 22:07:52 -0400 (EDT)
  8. Path: news.columbia.edu!panix!news.eecs.umich.edu!nntprelay.mathworks.com!cam-news-hub1.bbnplanet.com!news.bbnplanet.com!prodigy.com!nntp.earthlink.net!usenet
  9. From: Bill <pearson@earthlink.net>
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: K95 scripting in NT...
  12. Date: Fri, 05 Sep 1997 18:22:01 -0700
  13. Organization: FNIC
  14. Lines: 32
  15. Message-ID: <3410B039.DE575B99@earthlink.net>
  16. NNTP-Posting-Host: 207.217.12.208
  17. Mime-Version: 1.0
  18. Content-Type: text/plain; charset=us-ascii
  19. Content-Transfer-Encoding: 7bit
  20. X-Mailer: Mozilla 4.0 [en] (WinNT; I)
  21. X-Priority: 3 (Normal)
  22. Xref: news.columbia.edu comp.protocols.kermit.misc:7622
  23.  
  24. I'm having some trouble scripting a VMS login using K95 running in NT. I'm using
  25. a TCP/IP connection on a LAN. The connection can be made manually. But, when I
  26. script it, the script times out.
  27.  
  28. Here's a sample of my script/macro:
  29.  
  30. def ALPHA {
  31.   ask \%u Username:
  32.   askq \%p Password:
  33.   ask \%h Host:
  34.   set network type tcp
  35.   set host \%h
  36.   connect
  37.   input 5 username
  38.   output \%u\13
  39.   input 5 password
  40.   output \%p\13
  41. }
  42.  
  43. I realize this isn't very robust, however it illistrates my problem. The
  44. macro/script seems to hang just after the "connect" statement. If I issue a
  45. "CTRL-] c" and get back to *local* mode, then the script seems to continue, and
  46. when I re-connect, I'm logged in to the VMS host.
  47.  
  48. Any help is greatly appreciated.
  49. --
  50. William Pearson  FNIC    pearsob@FNIC..net
  51.    Suite #150
  52.    2780 Skypark Drive
  53.    Torrance, CA 90505 (310) 326-3100 x205
  54.  
  55.